chore: replace asr-api-python submodule with VCS dependency#2
Merged
YASoftwareDev merged 5 commits intomainfrom Apr 1, 2026
Merged
chore: replace asr-api-python submodule with VCS dependency#2YASoftwareDev merged 5 commits intomainfrom
YASoftwareDev merged 5 commits intomainfrom
Conversation
Replace GitLab-only [[_ToC_]] with manual anchor-link TOC in README.md, and fix stray comma in bash code fence in DOCUMENTATION.md.
Reference techmo-asr-api via PEP 508 VCS specifier instead of a git submodule, matching the pattern used by tts-client-python: techmo-asr-api @ git+https://github.com/techmo-pl/asr-api-python.git@1.1.4 Changes: - pyproject.toml: add git URL dep, remove [tool.uv.sources] override - tox.ini: remove -e submodules/asr-api-python dep (now via package) - setup.sh: replace submodule sync with pre-commit install from GitHub - .gitmodules: deleted - submodules/asr-api-python: removed from tracking
Follow-on to the submodule removal: wire up the techmo-asr-api VCS dependency in all tooling files. - pyproject.toml: techmo-asr-api @ git+https://github.com/techmo-pl/asr-api-python.git@1.1.4 - tox.ini: drop -e submodules/asr-api-python extra dep - setup.sh: install pre-commit hooks from github.com/techmo-pl/pre-commit - CLAUDE.md: reflect new dependency source, remove submodule references
# Conflicts: # CLAUDE.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
asr-api-pythongit submodule with a PEP 508 VCS dependency, matching the pattern already used bytts-client-pythonpyproject.toml:techmo-asr-api @ git+https://github.com/techmo-pl/asr-api-python.git@1.1.4tox.ini: removedeps = -e submodules/asr-api-python(dependency now resolved via the package itself)setup.sh: replace submodule sync with pre-commit hook installation fromgithub.com/techmo-pl/pre-commit.gitmodulesandsubmodules/asr-api-pythonremovedTest plan
./install.shon a fresh clone (no./setup.shneeded) — verifyasr_apiimports workpytest tests/ -k "not integration"— unit tests passtox -e py311— full tox run passes